$val = wave.loudness ("<Wave Filename>",[Block Size],"[Freqstoignore]")
Online IVR Tutorial


Parameters Return Value Remark Example
  1. $val = wave.loudness("welcome.wav",1000)
    msgbox($val)
    • Displays the maximum frequency within the block size. None of the frequencies are ignored.
    • $val contains the maximum frequency.

  2. $val = wave.loudness("welcome.wav","100,2200")
    msgbox($val)
    • Displays the maximum frequency within the block size. It ignores blocks containing frequencies 100 and 2200 while checking for loudness.
    • $val contains the maximum frequency.